home *** CD-ROM | disk | FTP | other *** search
- class WindowLIST_BUTTONS : public Window
- {
- protected:
- PushButton aPushButtonNEW_BUTTON;
- PushButton aPushButtonEDIT_BUTTON;
- PushButton aPushButton3;
- PushButton aPushButton4;
- PushButton aPushButton5;
- PushButton aPushButton6;
- Window aWindow1;
- public:
- WindowLIST_BUTTONS( Window * pParent, ResId & rResId, BOOL bFreeRes = TRUE );
- };
-
-
- WindowLIST_BUTTONS::WindowLIST_BUTTONS( Window * pParent, ResId & rResId, BOOL bFreeRes )
- : Window( pParent, rResId ),
- aPushButtonNEW_BUTTON( this, ResId( NEW_BUTTON ) ),
- aPushButtonEDIT_BUTTON( this, ResId( EDIT_BUTTON ) ),
- aPushButton3( this, ResId( 3 ) ),
- aPushButton4( this, ResId( 4 ) ),
- aPushButton5( this, ResId( 5 ) ),
- aPushButton6( this, ResId( 6 ) ),
- aWindow1( this, ResId( 1 ) )
- {
- if( bFreeRes ) FreeResource();
- }
-